From eb1527ee60b3b725f7c25a68da9e8a5dcf43fb23 Mon Sep 17 00:00:00 2001 From: Tobias Bieniek Date: Wed, 19 Aug 2015 10:49:50 +0200 Subject: [PATCH] bin/new: Use uppercase option arguments Every other command except for `cargo new` is using for positional arguments and ARG for option arguments. --- src/bin/new.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/new.rs b/src/bin/new.rs index 0c6864448..ee53ebe8c 100644 --- a/src/bin/new.rs +++ b/src/bin/new.rs @@ -23,11 +23,11 @@ Usage: Options: -h, --help Print this message - --vcs Initialize a new repository for the given version + --vcs VCS Initialize a new repository for the given version control system (git or hg) or do not initialize any version control at all (none) overriding a global configuration. --bin Use a binary instead of a library template - --name Set the resulting package name + --name NAME Set the resulting package name -v, --verbose Use verbose output -q, --quiet No output printed to stdout --color WHEN Coloring: auto, always, never -- 2.30.2